From b70cff717b6f580d5193a074df4d47fe3d80e10e Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 28 May 1993 00:55:10 +0000 Subject: [PATCH] (install): Get the scripts from ${srcdir}, unlike the executables. --- lib-src/Makefile.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index eae3e5537dc..bf9b3e23115 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in @@ -138,10 +138,14 @@ ${archlibdir}: all install: ${archlibdir} @echo @echo "Installing utilities for users to run." - for file in ${INSTALLABLES} ${INSTALLABLE_SCRIPTS}; do \ + for file in ${INSTALLABLES} ; do \ cp $${file} ${bindir}/$${file}.new ; \ chmod 755 ${bindir}/$${file}.new ; \ done + for file in ${INSTALLABLE_SCRIPTS} ; do \ + cp ${srcdir}/$${file} ${bindir}/$${file}.new ; \ + chmod 755 ${bindir}/$${file}.new ; \ + done @echo @echo "Changing the owner and group of utility programs to \`bin'." @echo "(You may ignore errors here if you don't care about this.)" -- 2.30.2